home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / t_os / shell / tsbgex / src / tool / makefile < prev    next >
Encoding:
Makefile  |  1994-11-16  |  334 b   |  20 lines

  1. CC    = g:\hc386\bin\hc386 -fsoft
  2. ASM    = g:\386asm\exe\386asm
  3. LINKER    = g:\hc386\bin\386linkp
  4. RUN386    = d:\run386 -nocrt
  5. CFLAGS    = 
  6.  
  7. all:    setvar.exp
  8.  
  9. setvar.exp: setvar.obj misc.obj rex_hdr.h
  10.     $(CC) -o setvar.exp setvar.obj misc.obj
  11.  
  12. misc.obj: misc.c
  13.     $(CC) -c misc.c
  14.  
  15. .c.obj:
  16.     $(CC) -c $(CFLAGS) $<
  17.  
  18. .asm.obj:
  19.     $(ASM) $<
  20.